ProcNetBlocker Usage:

procnetblocker [-h] [--block PID_OR_EXE] [--unblock PID_OR_EXE]
                      [--status PID_OR_EXE] [--exe] [-v]

optional arguments:
  -h, --help            show this help message and exit
  --block PID_OR_EXE    Block network access for specified PID or EXE file
  --unblock PID_OR_EXE  Unblock network access for specified PID or EXE file
  --status PID_OR_EXE   Check network status for specified PID or EXE file
  --exe                 Explicitly specify target as EXE file
  -v, --verbose         Show verbose output

Examples:

  # Block/Unblock PID Network Access
  procnetblocker.exe --block 1234        # Block PID 1234
  procnetblocker.exe --unblock 1234       # Unblock PID 1234
  procnetblocker.exe --status 1234        # Check PID 1234

  # Block/Unblock EXE Network Access
  procnetblocker.exe --block "D:\Example\Example.exe" --exe    # Block example.exe
  procnetblocker.exe --unblock "D:\Example\Example.exe" --exe # Unblock example.exe
  procnetblocker.exe --status "D:\Example\Example.exe" --exe # Check example.exe

Notes:
- Some operations may require administrator privileges
